home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’94 / [√] Distribution Restricted! / Steve Sisak / TMFutures / Futures.h < prev    next >
Text File  |  1994-06-26  |  719b  |  32 lines

  1. /*
  2.     File:        Futures.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Written by:    xxx put writers here xxx
  7.  
  8.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  9.                 © 1994 by Steve Sisak, all rights reserved.
  10.  
  11. NOTE:
  12.     Need to check w/Dave Falkenberg at Apple for proper credit
  13.     for all previous writers of this code and proper copyright
  14.     before distribution
  15.  
  16.     Change History (most recent first):
  17.  
  18.          <1>    10/14/93    bsp        first checked in
  19.  
  20. */
  21. #ifndef __FUTURES__
  22. #define __FUTURES__
  23.  
  24. #include <AppleEvents.h>
  25.  
  26. pascal OSErr    InitFutures(void);
  27. pascal OSErr    Ask(AppleEvent* question, AppleEvent* answer);
  28. pascal Boolean    IsFuture(AppleEvent* message);
  29. pascal OSErr    BlockUntilReal(AppleEvent* message);
  30.  
  31. #endif // __FUTURES__
  32.